module.exports = { 'env': { 'browser': true, 'commonjs': true, 'es6': true }, 'extends': 'standard', 'globals': { 'connect': 'readonly', // 'Atomics': 'readonly', // 'SharedArrayBuffer': 'readonly' }, 'parserOptions': { 'ecmaVersion': 2018 }, 'rules': { // Each set of rules, errors, warnings, and zeroes // Ranked in order from KYS to why don't you eat some fucking cake, you // stupid butt ugly mother fucker // Fuck with these and I will personally drag you to the depths of the // worst possible hell you or anyone you have ever known can possibly // imagine 'no-unused-vars': 1, 'camelcase': 0, 'no-multiple-empty-lines': 0, 'space-before-function-paren': 0, 'quotes': 0, 'template-curly-spacing': 0, // "indent": ["warn", "tab"], 'indent': 0, // 'semi': ["warn", "always"], 'semi': 0, 'no-trailing-spaces': 0 } }