mirror of
https://github.com/pezkuwichain/phishing.git
synced 2026-04-21 23:48:01 +00:00
20 lines
415 B
JavaScript
20 lines
415 B
JavaScript
// Copyright 2020 @polkadot/phishing authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
const base = require('@polkadot/dev/config/eslint');
|
|
|
|
module.exports = {
|
|
...base,
|
|
parserOptions: {
|
|
...base.parserOptions,
|
|
project: [
|
|
'./tsconfig.json'
|
|
]
|
|
},
|
|
rules: {
|
|
...base.rules,
|
|
// this seems very broken atm, false positives
|
|
'@typescript-eslint/unbound-method': 'off'
|
|
}
|
|
};
|