| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- const normalGlobals = [
- 'ko', 'jQuery', '$', '_', 'Promise'
- ];
- const hueGlobals = [
- // global_js_constants.mako
- 'IS_HUE_4', 'AUTOCOMPLETE_TIMEOUT','CSRF_TOKEN','HAS_MULTI_CLUSTER',
- 'DROPZONE_HOME_DIR', 'ENABLE_SQL_SYNTAX_CHECK', 'HAS_NAVIGATOR', 'HAS_OPTIMIZER', 'HAS_WORKLOAD_ANALYTICS',
- 'HUE_CONTAINER', 'IS_EMBEDDED', 'IS_K8S_ONLY', 'HUE_VERSION', 'IS_NEW_INDEXER_ENABLED',
- 'IS_S3_ENABLED', 'DOCUMENT_TYPES', 'LOGGED_USERNAME', 'USER_HOME_DIR', 'LOGGED_USERGROUPS', 'METASTORE_PARTITION_LIMIT',
- // other misc, TODO
- 'huePubSub', 'ApiHelper', 'SqlUtils', 'ContextCatalog', 'DataCatalog'
- ];
- const globals = normalGlobals.concat(hueGlobals).reduce((acc, key) => {
- acc[key] = true;
- return acc;
- }, {});
- module.exports = {
- env: {
- browser: true,
- node: true,
- es6: true
- },
- extends: [
- 'plugin:prettier/recommended'
- ],
- globals: globals,
- parser: 'babel-eslint',
- parserOptions: {
- ecmaVersion: 2017,
- sourceType: 'module',
- ecmaFeatures: {
- }
- },
- plugins: [],
- rules: {
- 'new-cap': 0,
- 'no-console': 0,
- 'no-extra-boolean-cast': 0,
- 'no-invalid-this': 0,
- 'no-lonely-if': 2,
- 'no-throw-literal': 0,
- 'no-unused-vars': [
- 'error',
- {
- vars: 'all',
- args: 'none',
- ignoreRestSiblings: true,
- varsIgnorePattern: '_[a-zA-Z0-9_]+'
- }
- ],
- 'no-useless-constructor': 2,
- 'no-var': 1,
- 'no-undef': 2,
- 'one-var': 0,
- 'prefer-arrow-callback': 2,
- 'prefer-const': ['warn', { destructuring: 'all' }],
- 'require-jsdoc': 0,
- strict: 0,
- 'valid-jsdoc': 0,
- curly: [2, 'all']
- },
- settings: {
- }
- };
|