mirror of
https://github.com/fluencelabs/fluence-js.git
synced 2024-12-04 18:00:18 +00:00
919c7d6ea1
* introduce eslint * Fix all eslint errors * Eslint fix and some touches * Fix tests * Fix misc errors * change semver * change semver #2 * Fix path * Fix path #2 * freeze lock file in CI * fix package install * Fix formatting of surrounding files * Add empty prettier config * Fix formatting * Fix build errors * Remove unused deps * remove changelog from formatting * deps cleanup * make resource importers async * Refactor * Fix error message * remove comment * more refactoring * Update packages/core/js-client/src/compilerSupport/registerService.ts Co-authored-by: shamsartem <shamsartem@gmail.com> * refactoring * refactoring fix * optimize import * Update packages/@tests/smoke/node/src/index.ts Co-authored-by: shamsartem <shamsartem@gmail.com> * Revert package * Fix pnpm lock * Lint-fix * Fix CI * Update tests * Fix build * Fix import * Use forked threads dep * Use fixed version * Update threads * Fix lint * Fix test * Fix test * Add polyfill for assert * Add subpath import * Fix tests * Fix deps --------- Co-authored-by: shamsartem <shamsartem@gmail.com>
134 lines
3.0 KiB
JSON
134 lines
3.0 KiB
JSON
{
|
|
"parser": "@typescript-eslint/parser",
|
|
"parserOptions": {
|
|
"ecmaVersion": 2022,
|
|
"project": ["./tsconfig.eslint.json"],
|
|
"sourceType": "module"
|
|
},
|
|
"extends": [
|
|
"eslint:recommended",
|
|
"plugin:@typescript-eslint/strict-type-checked",
|
|
"plugin:import/recommended",
|
|
"plugin:import/typescript",
|
|
"prettier"
|
|
],
|
|
"plugins": [
|
|
"@typescript-eslint",
|
|
"import",
|
|
"license-header",
|
|
"unused-imports"
|
|
],
|
|
"ignorePatterns": ["**/node_modules/**/*", "**/dist/**/*"],
|
|
"rules": {
|
|
"eqeqeq": [
|
|
"error",
|
|
"always",
|
|
{
|
|
"null": "ignore"
|
|
}
|
|
],
|
|
"no-console": ["error"],
|
|
"arrow-body-style": ["error", "always"],
|
|
"no-empty": [
|
|
"error",
|
|
{
|
|
"allowEmptyCatch": true
|
|
}
|
|
],
|
|
"curly": ["error", "all"],
|
|
"no-unused-expressions": ["error"],
|
|
"dot-notation": ["off"],
|
|
"object-curly-spacing": ["error", "always"],
|
|
"padding-line-between-statements": [
|
|
"error",
|
|
{
|
|
"blankLine": "always",
|
|
"prev": "multiline-expression",
|
|
"next": "*"
|
|
},
|
|
{
|
|
"blankLine": "always",
|
|
"prev": "*",
|
|
"next": "multiline-expression"
|
|
},
|
|
{
|
|
"blankLine": "always",
|
|
"prev": "multiline-block-like",
|
|
"next": "*"
|
|
},
|
|
{
|
|
"blankLine": "always",
|
|
"prev": "*",
|
|
"next": "multiline-block-like"
|
|
},
|
|
{
|
|
"blankLine": "always",
|
|
"prev": "multiline-const",
|
|
"next": "*"
|
|
},
|
|
{
|
|
"blankLine": "always",
|
|
"prev": "*",
|
|
"next": "multiline-const"
|
|
},
|
|
{
|
|
"blankLine": "always",
|
|
"prev": "multiline-let",
|
|
"next": "*"
|
|
},
|
|
{
|
|
"blankLine": "always",
|
|
"prev": "*",
|
|
"next": "multiline-let"
|
|
},
|
|
{
|
|
"blankLine": "any",
|
|
"prev": "case",
|
|
"next": "case"
|
|
}
|
|
],
|
|
"import/extensions": ["error", "ignorePackages"],
|
|
"import/no-unresolved": "off",
|
|
"import/no-cycle": ["error"],
|
|
"import/order": [
|
|
"error",
|
|
{
|
|
"newlines-between": "always",
|
|
"alphabetize": {
|
|
"order": "asc",
|
|
"caseInsensitive": true
|
|
}
|
|
}
|
|
],
|
|
"node/no-unsupported-features/es-syntax": "off",
|
|
"node/no-unpublished-import": "off",
|
|
"node/no-missing-import": "off",
|
|
"@typescript-eslint/explicit-member-accessibility": [
|
|
"error",
|
|
{
|
|
"accessibility": "no-public"
|
|
}
|
|
],
|
|
"@typescript-eslint/strict-boolean-expressions": [
|
|
"error",
|
|
{
|
|
"allowString": false,
|
|
"allowNumber": false,
|
|
"allowNullableObject": false,
|
|
"allowNullableBoolean": false,
|
|
"allowNullableString": false,
|
|
"allowNullableNumber": false,
|
|
"allowAny": false
|
|
}
|
|
],
|
|
"@typescript-eslint/consistent-type-assertions": [
|
|
"error",
|
|
{
|
|
"assertionStyle": "never"
|
|
}
|
|
],
|
|
"unused-imports/no-unused-imports": "error",
|
|
"license-header/header": ["error", "./resources/license-header.js"]
|
|
}
|
|
}
|