Skip to content

Commit 9f29d44

Browse files
Merge pull request #1 from MysticalMike60t/dev
Dev
2 parents 077cbea + f55cae8 commit 9f29d44

File tree

13 files changed

+15097
-1562
lines changed

13 files changed

+15097
-1562
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
##
44
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
55

6+
dist
67
lib
78
.parcel-cache
89

eslint.config.js

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
// eslint.config.js
2+
const reactPlugin = require('eslint-plugin-react');
3+
4+
module.exports = [
5+
{
6+
languageOptions: {
7+
parserOptions: {
8+
ecmaVersion: 12,
9+
sourceType: 'module',
10+
ecmaFeatures: {
11+
jsx: true
12+
}
13+
},
14+
globals: {
15+
// Define global variables here if needed
16+
}
17+
},
18+
plugins: {
19+
react: reactPlugin
20+
},
21+
rules: {
22+
'no-unused-vars': 'warn',
23+
'react/jsx-uses-react': 'error',
24+
'react/jsx-uses-vars': 'error'
25+
}
26+
}
27+
];

0 commit comments

Comments
 (0)