Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
feat: impl style guide meeting changes
Browse files Browse the repository at this point in the history
Co-Authored-By: Christopher Angelo <[email protected]>
Co-Authored-By: Nur Fikri <[email protected]>
  • Loading branch information
3 people committed Jun 16, 2023
1 parent e4b9262 commit 165e1f5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion eslint/rules/import.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ const config = {
rules: {
"import/extensions": ["off"],
"import/first": ["error"],
"import/namespace": ["off"],
"import/newline-after-import": ["warn"],
"import/no-absolute-path": ["error"],
"import/no-cycle": ["error"],
"import/no-cycle": ["off"],
"import/no-default-export": ["error"],
"import/no-mutable-exports": ["error"],
"import/no-relative-packages": ["warn"],
Expand Down
2 changes: 1 addition & 1 deletion eslint/rules/possible-errors.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
const config = {
rules: {
"no-await-in-loop": ["error"],
"no-console": ["warn"],
"no-console": ["warn", { allow: ["error", "warn"] }],
"no-constant-binary-expression": ["warn"],
"no-promise-executor-return": ["error"],
"no-template-curly-in-string": ["error"],
Expand Down
1 change: 0 additions & 1 deletion eslint/rules/typescript/import.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ const config = {
"import/default": ["off"],
"import/export": ["off"],
"import/named": ["off"],
"import/namespace": ["off"],
"import/no-default-export": ["off"],
"import/no-duplicates": ["off"],
"import/no-unresolved": ["off"],
Expand Down

0 comments on commit 165e1f5

Please sign in to comment.