File tree Expand file tree Collapse file tree 6 files changed +29
-18
lines changed Expand file tree Collapse file tree 6 files changed +29
-18
lines changed Original file line number Diff line number Diff line change 4
4
workflow_dispatch :
5
5
inputs :
6
6
version :
7
- description : " Release version"
7
+ description : Release version
8
8
required : true
9
9
type : string
10
10
Original file line number Diff line number Diff line change 1
1
* .code-snippets
2
- CHANGELOG.md
2
+ bun.lockb
3
+ bunfig.toml
4
+ CHANGELOG.md
5
+ LICENSE
6
+
7
+ # From .gitignore
8
+ .env
9
+ * .log *
10
+ .eslintcache
11
+ * .DS_Store
12
+ node_modules
Original file line number Diff line number Diff line change 1
- // A launch configuration that launches the extension inside a new window
2
- // Use IntelliSense to learn about possible attributes.
3
- // Hover to view descriptions of existing attributes.
4
- // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5
1
{
6
- "version" : " 0.2.0" ,
7
- "configurations" : [
8
- {
9
- "name" : " Extension" ,
10
- "type" : " extensionHost" ,
11
- "request" : " launch" ,
12
- "args" : [
13
- " --extensionDevelopmentPath=${workspaceFolder}"
14
- ]
15
- }
16
- ]
17
- }
2
+ "configurations" : [
3
+ {
4
+ "args" : [" --extensionDevelopmentPath=${workspaceFolder}" ],
5
+ "name" : " Extension" ,
6
+ "request" : " launch" ,
7
+ "type" : " extensionHost"
8
+ }
9
+ ],
10
+ "version" : " 0.2.0"
11
+ }
Original file line number Diff line number Diff line change
1
+ import exer7umConfig from "@exer7um/eslint-config"
2
+
3
+ export default exer7umConfig
Original file line number Diff line number Diff line change 46
46
}
47
47
],
48
48
"publisher" : " exer7um" ,
49
+ "type" : " module" ,
49
50
"scripts" : {
51
+ "eslint" : " eslint . --max-warnings=0" ,
52
+ "eslint:fix" : " eslint . --max-warnings=0 --fix" ,
50
53
"prettier" : " prettier --check --ignore-unknown --no-error-on-unmatched-pattern *" ,
51
54
"prettier:write" : " prettier --write --ignore-unknown --no-error-on-unmatched-pattern *"
52
55
},
152
155
},
153
156
"prettier" : " @exer7um/prettier-config" ,
154
157
"devDependencies" : {
158
+ "@exer7um/eslint-config" : " 1.1.1" ,
155
159
"@exer7um/prettier-config" : " 0.4.2"
156
160
},
157
161
"engines" : {
You can’t perform that action at this time.
0 commit comments