Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 0 additions & 20 deletions .editorconfig

This file was deleted.

8 changes: 0 additions & 8 deletions .eslintignore

This file was deleted.

55 changes: 0 additions & 55 deletions .eslintrc

This file was deleted.

4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.vscode
.vscode/*
!.vscode/settings.json
!.vscode/extensions.json
.antlr
.idea
node_modules
Expand Down
3 changes: 2 additions & 1 deletion .npmrc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
save-exact=true
save-exact=true
prefer-dedupe=true
33 changes: 33 additions & 0 deletions .oxlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"$schema": "https://raw.githubusercontent.com/oxc-project/oxc/main/crates/oxc_linter/src/schemas/oxlint.schema.json",
"categories": {
"correctness": "error",
"suspicious": "error",
"perf": "error",
"pedantic": "warn"
},
"rules": {
"max-classes-per-file": "off",
"max-lines": "off",
"max-lines-per-function": "off",
"no-bitwise": "warn",
"require-await": "off",
"strict-boolean-expressions": "off",
"unicorn/require-module-specifiers": "off"
},
"ignorePatterns": [
"**/*.config.*",
"**/*.d.ts",
"**/*.e2e.ts",
"**/*.spec.ts",
".git",
".idea",
".vscode",
"build",
"forward_engineering/node_modules",
"node_modules",
"out/**/*",
"release",
"reverse_engineering/node_modules"
]
}
3 changes: 3 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,6 @@
release
node_modules
package.json

# Lock files
package-lock.json
12 changes: 0 additions & 12 deletions .prettierrc

This file was deleted.

9 changes: 9 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"recommendations": [
"esbenp.prettier-vscode",
"sonarsource.sonarlint-vscode",
"streetsidesoftware.code-spell-checker",
"vitest.explorer",
"oxc.oxc-vscode"
]
}
10 changes: 10 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"editor.formatOnSave": true,
"oxc.enable": true,
"oxc.typeAware": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.oxlint": "always"
},
"cSpell.words": ["ianvs", "jridgewell", "oxfmt", "oxlint", "tsgolint"]
}
12 changes: 12 additions & 0 deletions lint-staged.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/*
* Copyright © 2016-2026 by IntegrIT S.A. dba Hackolade. All rights reserved.
*
* The copyright to the computer software herein is the property of IntegrIT S.A.
* The software may be used and/or copied only with the written permission of
* IntegrIT S.A. or in accordance with the terms and conditions stipulated in
* the agreement/contract under which the software has been supplied.
*/
module.exports = {
'*.{js,jsx,ts,tsx,cjs,mjs}': ['prettier --write', 'npm run lint'],
'*.{json,css,scss}': ['prettier --write'],
};
Loading