You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
434 B
JavaScript
19 lines
434 B
JavaScript
module.exports = {
|
|
env: {
|
|
browser: true,
|
|
commonjs: true,
|
|
es6: true,
|
|
'jest/globals': true,
|
|
},
|
|
extends: ['standard', 'plugin:prettier/recommended'],
|
|
plugins: ['prettier', 'jest'],
|
|
parserOptions: {
|
|
ecmaVersion: 2019,
|
|
sourceType: 'module',
|
|
},
|
|
rules: {
|
|
// Add here all the extra rules based on the developer preferences
|
|
'no-unused-vars': ['warn', { args: 'after-used', vars: 'all' }],
|
|
},
|
|
};
|