datahub/datahub-web/.eslintrc.js
Charlie Tran 843a6c5bbb
feat(frontend): update datahub-web client UI code (#1806)
* Releases updated version of datahub-web client UI code

* Fix typo in yarn lock

* Change yarn lock to match yarn registry directories

* Previous commit missed some paths

* Even more changes to yarnlock missing in previous commit

* Include codegen file for typings

* Add files to get parity for datahub-web and current OS datahub-midtier

* Add in typo fix from previous commit - change to proper license

* Implement proper OS fix for person entity picture url

* Workarounds for open source DH issues

* Fixes institutional memory api and removes unopensourced tabs for datasets

* Fixes search dataset deprecation and user search issue as a result of changes

* Remove internal only options in the avatar menu
2020-08-26 15:44:50 -07:00

85 lines
2.4 KiB
JavaScript

module.exports = {
root: true,
globals: {
server: true,
define: true
},
extends: [
'plugin:ember/recommended',
'plugin:@typescript-eslint/recommended',
'prettier',
'prettier/@typescript-eslint'
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module'
},
env: {
browser: true,
node: true
},
rules: {
'no-implicit-globals': [1],
'no-console': 'error',
'no-debugger': 'error',
'require-await': 'error',
'@typescript-eslint/class-name-casing': 'error',
'@typescript-eslint/interface-name-prefix': ['error', 'always'],
'@typescript-eslint/member-delimiter-style': 'error',
'@typescript-eslint/no-empty-interface': 'error',
'@typescript-eslint/consistent-type-assertions': 'warn',
'@typescript-eslint/array-type': ['error', { default: 'generic' }],
'@typescript-eslint/no-non-null-assertion': 'warn',
'@typescript-eslint/explicit-member-accessibility': 'off',
'@typescript-eslint/no-parameter-properties': 'off',
'@typescript-eslint/explicit-function-return-type': 'warn',
'@typescript-eslint/ban-ts-ignore': 'warn',
'@typescript-eslint/no-empty-function': 'warn',
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }],
'prettier/prettier': ['error', { singleQuote: true, printWidth: 120 }],
'ember/no-ember-super-in-es-classes': 'error',
'@datahub/no-addon-import': 'error',
'@datahub/no-linkedin-import': 'warn',
eqeqeq: ['error', 'always']
},
plugins: ['prettier', 'ember', '@typescript-eslint', '@datahub'],
overrides: [
// node files
{
files: [
'**/.eslintrc.js',
'**/.template-lintrc.js',
'**/ember-cli-build.js',
'**/scripts/**/*.js',
'**/testem.js',
'**/index.js',
'**/config/**/*.js',
'**/lib/*/**.js'
],
parserOptions: {
sourceType: 'script',
ecmaVersion: 2015
},
env: {
browser: false,
node: true
},
rules: {
'@typescript-eslint/no-var-requires': 'off'
}
},
{
files: [
'@linkedin/**/*.ts',
'@linkedin/**/*.js',
'packages/data-portal-internal-clone/**/*.ts',
'packages/data-portal-internal-clone/**/*.js'
],
rules: {
'@datahub/no-linkedin-import': 'off'
}
}
]
};