Initial commit

This commit is contained in:
Jaco Greeff
2020-09-21 14:59:46 +02:00
commit 314bf6f252
26 changed files with 19185 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
// 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'
}
};