Skip to content

Commit

Permalink
Hotfix ci (#2296)
Browse files Browse the repository at this point in the history
* ci: fix ci

* fix(eslint): remove code comment
  • Loading branch information
Erb3 authored Aug 26, 2024
1 parent 9fd0f68 commit 656c5b6
Show file tree
Hide file tree
Showing 3 changed files with 247 additions and 251 deletions.
2 changes: 1 addition & 1 deletion packages/assets/styles/classes.scss
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@ a,
h1 {
display: block;
}

h1,
h2 {
padding: 10px 0 5px;
Expand Down
13 changes: 5 additions & 8 deletions packages/eslint-config-custom/library.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { resolve } = require("node:path");
const { resolve } = require('node:path')

const project = resolve(process.cwd(), "tsconfig.json");
const project = resolve(process.cwd(), 'tsconfig.json')

module.exports = {
extends: [
Expand All @@ -12,19 +12,16 @@ module.exports = {
'plugin:import/typescript',
'turbo',
],
parserOptions: {
project,
},
globals: {
React: true,
JSX: true,
},
settings: {
"import/resolver": {
'import/resolver': {
typescript: {
project,
},
},
},
ignorePatterns: ["node_modules/", "dist/"],
};
ignorePatterns: ['node_modules/', 'dist/'],
}
Loading

0 comments on commit 656c5b6

Please sign in to comment.