Skip to content

Commit

Permalink
refactor: nuxtr activation and public commands
Browse files Browse the repository at this point in the history
  • Loading branch information
adhamfarrag committed Jan 12, 2024
1 parent bb380fc commit f9bee79
Show file tree
Hide file tree
Showing 25 changed files with 1,469 additions and 1,448 deletions.
64 changes: 32 additions & 32 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
{
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"oxlint"
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint",
"oxlint"
],
"rules": {
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/semi": 0,
"curly": [
"error",
"all"
],
"rules": {
"@typescript-eslint/naming-convention": "off",
"@typescript-eslint/semi": 0,
"curly": [
"error",
"all"
],
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off",
"@typescript-eslint/indent": [
"error",
4
],
"no-multiple-empty-lines": "warn",
"no-empty": "warn"
},
"ignorePatterns": [
"out",
"dist",
"**/*.d.ts",
"ui/**"
]
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off",
"@typescript-eslint/indent": [
"error",
4
],
"no-multiple-empty-lines": "warn",
"no-empty": "warn"
},
"ignorePatterns": [
"out",
"dist",
"**/*.d.ts",
"ui/**"
]
}
Loading

0 comments on commit f9bee79

Please sign in to comment.