mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-18 21:27:51 +00:00
7d13946c3e
Change-type: patch
22 lines
647 B
JavaScript
22 lines
647 B
JavaScript
module.exports = {
|
|
extends: ['./node_modules/@balena/lint/config/.eslintrc.js'],
|
|
parserOptions: {
|
|
project: 'tsconfig.dev.json',
|
|
},
|
|
root: true,
|
|
rules: {
|
|
ignoreDefinitionFiles: 0,
|
|
// to avoid the `warning Forbidden non-null assertion @typescript-eslint/no-non-null-assertion`
|
|
'@typescript-eslint/no-non-null-assertion': 'off',
|
|
'@typescript-eslint/no-shadow': 'off',
|
|
'@typescript-eslint/no-var-requires': 'off',
|
|
'no-restricted-imports': [
|
|
'error',
|
|
{
|
|
paths: ['resin-cli-visuals', 'chalk', 'common-tags', 'resin-cli-form'],
|
|
},
|
|
],
|
|
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
|
|
},
|
|
};
|