ohmysearch
Version:
Ohmysearch - customizable all in one search tool to boost developer productivity
23 lines • 665 B
JavaScript
module.exports = {
root: true,
parserOptions: {
tsconfigRootDir: require('path').resolve(__dirname, '..'),
"ecmaVersion": 2017,
"env": {
"es6": true
},
"sourceType": "module",
"allowImportExportEverywhere": true
},
rules: {
'@typescript-eslint/no-parameter-properties': 'off',
'@typescript-eslint/no-use-before-define': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/ban-types': 'off',
'no-void': 'off',
'@rushstack/no-new-null': 'off',
'react/jsx-uses-react': "off",
'react/react-in-jsx-scope': "off"
}
}