personal-gallery-node/packages/server/.eslintrc.js

18 lines
375 B
JavaScript

module.exports = {
extends: ['airbnb-typescript/base'],
parserOptions: {
project: './tsconfig.json'
},
ignorePatterns: ['.eslintrc.js'],
rules: {
'no-warning-comments': [
'warn',
{
terms: ['todo', 'fixme', 'any other term'],
location: 'anywhere'
}
],
'no-unused-vars': ['error', { varsIgnorePattern: '^_' }]
}
};