Skip to content

Commit

Permalink
fixed the eslintrc file.
Browse files Browse the repository at this point in the history
  • Loading branch information
AyushNautiyalDeveloper committed Apr 21, 2024
1 parent 9939c51 commit f25d259
Show file tree
Hide file tree
Showing 9 changed files with 155 additions and 155 deletions.
4 changes: 3 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ node_modules
/lib
/esm
/cjs
/browser
/browser
esm
cjs
134 changes: 0 additions & 134 deletions .eslintrc

This file was deleted.

10 changes: 0 additions & 10 deletions .eslintrc.js

This file was deleted.

11 changes: 11 additions & 0 deletions apps/parser/.eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
node_modules
.vscode
.DS_Store
/docs
/coverage
/lib
/esm
/cjs
/browser
esm
cjs
131 changes: 131 additions & 0 deletions apps/parser/.eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
{
"parser": "@typescript-eslint/parser",
"env": {
"node": true,
"es6": true,
"jest": true,
"mocha": true,
"browser": true
},
"plugins": [
"@typescript-eslint",
"sonarjs",
"security",
"github"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:sonarjs/recommended",
"plugin:security/recommended"
],
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"strict": 0,
"no-underscore-dangle": 0,
"no-mixed-requires": 0,
"no-process-exit": 0,
"no-warning-comments": 0,
"no-use-before-define": 0,
"curly": 0,
"no-multi-spaces": 0,
"no-alert": 0,
"consistent-return": 0,
"consistent-this": [0, "self"],
"func-style": 0,
"max-nested-callbacks": 0,
"camelcase": 0,
"no-dupe-class-members": 0,
"security/detect-object-injection": 0,
"sonarjs/no-small-switch": 0,
"sonarjs/no-nested-template-literals": 0,
"no-debugger": 1,
"no-empty": 1,
"no-invalid-regexp": 1,
"no-unused-expressions": 1,
"no-native-reassign": 1,
"no-fallthrough": 1,
"sonarjs/cognitive-complexity": 1,
"eqeqeq": 2,
"no-undef": 2,
"no-dupe-keys": 2,
"no-empty-character-class": 2,
"no-self-compare": 2,
"valid-typeof": 2,
"handle-callback-err": 2,
"no-shadow-restricted-names": 2,
"no-new-require": 2,
"no-mixed-spaces-and-tabs": 2,
"block-scoped-var": 2,
"no-else-return": 2,
"no-throw-literal": 2,
"no-void": 2,
"radix": 2,
"wrap-iife": [2, "outside"],
"no-shadow": 0,
"no-path-concat": 2,
"valid-jsdoc": [0, {"requireReturn": false, "requireParamDescription": false, "requireReturnDescription": false}],
"no-spaced-func": 2,
"semi-spacing": 2,
"quotes": [2, "single"],
"key-spacing": [2, {"beforeColon": false, "afterColon": true}],
"indent": [2, 2],
"no-lonely-if": 2,
"no-floating-decimal": 2,
"brace-style": [2, "1tbs", {"allowSingleLine": true}],
"comma-style": [2, "last"],
"no-multiple-empty-lines": [2, {"max": 1}],
"no-nested-ternary": 2,
"operator-assignment": [2, "always"],
"padded-blocks": [2, "never"],
"quote-props": [2, "as-needed"],
"keyword-spacing": [2, {"before": true, "after": true, "overrides": {}}],
"space-before-blocks": [2, "always"],
"array-bracket-spacing": [2, "never"],
"computed-property-spacing": [2, "never"],
"space-in-parens": [2, "never"],
"space-unary-ops": [2, {"words": true, "nonwords": false}],
"wrap-regex": 2,
"linebreak-style": 0,
"semi": [2, "always"],
"arrow-spacing": [2, {"before": true, "after": true}],
"no-class-assign": 2,
"no-const-assign": 2,
"no-this-before-super": 2,
"no-var": 2,
"object-shorthand": [2, "always"],
"prefer-arrow-callback": 2,
"prefer-const": 2,
"prefer-spread": 2,
"prefer-template": 2,
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-use-before-define": ["off"],
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-this-alias": "off",
"@typescript-eslint/no-unnecessary-type-constraint": "off",
"@typescript-eslint/ban-types": "off"
},
"overrides": [
{
"files": [
"test/**",
"*.spec.ts",
"*.test.ts"
],
"rules": {
"prefer-arrow-callback": 0,
"sonarjs/no-duplicate-string": 0,
"security/detect-object-injection": 0,
"security/detect-non-literal-fs-filename": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/no-unused-vars": 0
}
}
]
}
2 changes: 1 addition & 1 deletion apps/parser/src/iterator.ts
Original file line number Diff line number Diff line change
Expand Up @@ -246,4 +246,4 @@ function traverseMessageTrait(messageTrait: MessageTraitInterface, options: Trav
if (schemaTypesToIterate.includes(SchemaTypesToIterate.Headers) && messageTrait.hasHeaders()) {
traverseSchema(messageTrait.headers() as SchemaInterface, null, options);
}
}
}
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@
"private": true,
"scripts": {
"test": "turbo run test",
"lint":"turbo run lint",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"build": "turbo run build",
"parser:test:unit":"turbo run test:unit --filter=@asyncapi/parser",
"parser:test":"turbo run test --filter=@asyncapi/parser",
"parser:test:browser":"turbo run test:browser --filter=@asyncapi/parser",
"parser:build":"turbo run build --filter=@asyncapi/parser"
"parser:test:unit": "turbo run test:unit --filter=@asyncapi/parser",
"parser:test": "turbo run test --filter=@asyncapi/parser",
"parser:test:browser": "turbo run test:browser --filter=@asyncapi/parser",
"parser:build": "turbo run build --filter=@asyncapi/parser"
},
"devDependencies": {
"@repo/eslint-config": "*",
Expand Down
3 changes: 0 additions & 3 deletions tsconfig.json

This file was deleted.

4 changes: 3 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
"test": {},
"test:unit": {},
"test:integration": {},
"test:browser":{}
"test:browser": {},
"lint": {},
"lint:fix": {}
}
}

0 comments on commit f25d259

Please sign in to comment.