mirror of
https://github.com/pezkuwichain/phishing.git
synced 2026-05-07 07:17:59 +00:00
3dd66ff0f5
* Additional CI checks * if: always()
25 lines
520 B
JavaScript
25 lines
520 B
JavaScript
// Copyright 2020-2022 @polkadot/phishing authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
const base = require('@polkadot/dev/config/eslint.cjs');
|
|
|
|
module.exports = {
|
|
...base,
|
|
ignorePatterns: [
|
|
...base.ignorePatterns,
|
|
'jest/**/*',
|
|
'**/deno/*.ts'
|
|
],
|
|
parserOptions: {
|
|
...base.parserOptions,
|
|
project: [
|
|
'./tsconfig.eslint.json'
|
|
]
|
|
},
|
|
rules: {
|
|
...base.rules,
|
|
// this seems very broken atm, false positives
|
|
'@typescript-eslint/unbound-method': 'off'
|
|
}
|
|
};
|