mirror of
https://github.com/hkalexling/Mango.git
synced 2025-08-02 19:05:32 -04:00
12 lines
279 B
JavaScript
12 lines
279 B
JavaScript
module.exports = {
|
|
parser: '@babel/eslint-parser',
|
|
parserOptions: { requireConfigFile: false },
|
|
plugins: ['prettier'],
|
|
rules: {
|
|
eqeqeq: ['error', 'always'],
|
|
'object-shorthand': ['error', 'always'],
|
|
'prettier/prettier': 'error',
|
|
'no-var': 'error',
|
|
},
|
|
};
|