0803a15902
* Move common dev dependencies to workspace top level * Add .eslintrc.js for functions and common packages * Add more linting to check workflow
22 lines
432 B
JavaScript
22 lines
432 B
JavaScript
module.exports = {
|
|
extends: ['eslint:recommended'],
|
|
ignorePatterns: ['lib'],
|
|
env: {
|
|
node: true,
|
|
},
|
|
overrides: [
|
|
{
|
|
files: ['**/*.ts'],
|
|
plugins: ['@typescript-eslint'],
|
|
parser: '@typescript-eslint/parser',
|
|
parserOptions: {
|
|
project: ['./tsconfig.json'],
|
|
},
|
|
},
|
|
],
|
|
rules: {
|
|
'no-unused-vars': 'off',
|
|
'no-constant-condition': ['error', { checkLoops: false }],
|
|
},
|
|
}
|