mirror of
https://github.com/jlengrand/open-wc.git
synced 2026-03-10 08:31:19 +00:00
16 lines
465 B
JavaScript
16 lines
465 B
JavaScript
module.exports = {
|
|
extends: ['./packages/eslint-config/index.js', require.resolve('eslint-config-prettier')],
|
|
overrides: [
|
|
{
|
|
files: ['**/test/**/*.js', '**/*.config.js'],
|
|
rules: {
|
|
'no-console': 'off',
|
|
'no-unused-expressions': 'off',
|
|
'class-methods-use-this': 'off',
|
|
'max-classes-per-file': 'off',
|
|
'import/no-extraneous-dependencies': 'off', // we moved all devDependencies to root
|
|
},
|
|
},
|
|
],
|
|
};
|