Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Adds workflows for PR checks and release #485

Merged
merged 34 commits into from
Mar 31, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
f31ed6e
chore: manually run eslint & prettier
metacurb Mar 30, 2024
a26b31b
chore: Updates prettier task
metacurb Mar 30, 2024
ccb9476
chore: try marketplace action
metacurb Mar 30, 2024
e0ed767
chore: fix eslint and prettier, add tsc
metacurb Mar 30, 2024
caa4db7
chore: exclude .github dir from eslint and prettier
metacurb Mar 30, 2024
163c8cb
chore: updates package.json
metacurb Mar 30, 2024
1648a9a
chore: fix?
metacurb Mar 30, 2024
bc3737d
chore: adds build check
metacurb Mar 30, 2024
485eecd
chore: remove space?
metacurb Mar 30, 2024
c9afaad
chore: tidy up
metacurb Mar 30, 2024
2d1cbd5
chore: test publishing to vs code marketplace
metacurb Mar 30, 2024
961f06b
chore: test build package
metacurb Mar 30, 2024
28a7772
chore: package
metacurb Mar 30, 2024
9400fd5
chore: oops
metacurb Mar 30, 2024
466c310
cmon
metacurb Mar 30, 2024
65dd096
pls
metacurb Mar 30, 2024
2b5a34d
yup
metacurb Mar 30, 2024
3af5494
add
metacurb Mar 30, 2024
541ff5b
list
metacurb Mar 30, 2024
8eb91fb
rec
metacurb Mar 30, 2024
d1b90ad
define icon properly
metacurb Mar 30, 2024
53a13c3
bingo
metacurb Mar 30, 2024
bbbb5b3
testing
metacurb Mar 30, 2024
979f6fc
test again
metacurb Mar 30, 2024
0459422
remove if
metacurb Mar 30, 2024
b360948
configure release
metacurb Mar 30, 2024
42c1ac3
hmm
metacurb Mar 30, 2024
e30a4f9
final test
metacurb Mar 30, 2024
d87bfc4
ok
metacurb Mar 30, 2024
55fb554
test?
metacurb Mar 30, 2024
4ea6f5a
final test
metacurb Mar 30, 2024
dcd759f
chore: sets up release workflow
metacurb Mar 31, 2024
972a014
chore: clean up readme and changelog
metacurb Mar 31, 2024
26080fa
update readme
metacurb Mar 31, 2024
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
Prev Previous commit
Next Next commit
chore: fix?
  • Loading branch information
metacurb committed Mar 30, 2024
commit 1648a9af5f2585278b94ee4b8fb782d518530880
24 changes: 5 additions & 19 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,14 @@
"ecmaVersion": 6,
"sourceType": "module"
},
"extends": [
"prettier"
],
"plugins": [
"@typescript-eslint",
"simple-import-sort",
"unused-imports"
],
"extends": ["prettier"],
"plugins": ["@typescript-eslint", "simple-import-sort", "unused-imports"],
"rules": {
"@typescript-eslint/naming-convention": [
"warn",
{
"selector": "import",
"format": [
"camelCase",
"PascalCase"
]
"format": ["camelCase", "PascalCase"]
}
],
"@typescript-eslint/semi": "warn",
Expand All @@ -34,10 +25,5 @@
"unused-imports/no-unused-imports": "error",
"no-console": "error"
},
"ignorePatterns": [
"out",
"dist",
"**/*.d.ts",
".github"
]
}
"ignorePatterns": ["out", "dist", "**/*.d.ts", ".github"]
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,4 @@
"prettier --cache --write --ignore-unknown"
]
}
}
}
Loading