generated from nhcarrigan/template
1f44f2ddd9
Node.js CI / Lint and Test (push) Successful in 37s
Port in some older solutions I've written just to get the structure established and in place.
17 lines
336 B
JavaScript
17 lines
336 B
JavaScript
import NaomisConfig from '@nhcarrigan/eslint-config';
|
|
|
|
export default [
|
|
...NaomisConfig,
|
|
{
|
|
rules: {
|
|
'max-lines-per-function': 'off',
|
|
'max-statements': 'off',
|
|
}
|
|
},
|
|
{
|
|
files: ['src/**/*.spec.ts'],
|
|
rules: {
|
|
'max-nested-callbacks': 'off',
|
|
}
|
|
}
|
|
]; |