Skip to content

Commit

Permalink
clean up top level
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewNolte committed Apr 3, 2024
1 parent 375c774 commit 019b5c3
Show file tree
Hide file tree
Showing 6 changed files with 42 additions and 31 deletions.
22 changes: 0 additions & 22 deletions .eslintrc.json

This file was deleted.

3 changes: 0 additions & 3 deletions .github/FUNDING.yml

This file was deleted.

File renamed without changes.
5 changes: 0 additions & 5 deletions .prettierrc.js

This file was deleted.

6 changes: 5 additions & 1 deletion .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": ["dbaeumer.vscode-eslint", "amodio.tsl-problem-matcher"]
"recommendations": [
"dbaeumer.vscode-eslint",
"amodio.tsl-problem-matcher",
"esbenp.prettier-vscode"
]
}
37 changes: 37 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,43 @@
],
"icon": "images/icon.png",
"main": "./dist/main.js",
"prettier": {
"trailingComma": "es5",
"singleQuote": true,
"printWidth": 100
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"@typescript-eslint/naming-convention": "warn",
"@typescript-eslint/semi": "warn",
"curly": "warn",
"eqeqeq": "warn",
"no-throw-literal": "warn",
"semi": "off",
"no-unused-vars": "off",
"no-undef": "warn",
"no-constant-condition": "warn"
},
"ignorePatterns": [
"out",
"dist",
"**/*.d.ts",
"src/test"
],
"extends": [
"eslint:recommended",
"prettier"
]
},
"contributes": {
"languages": [
{
Expand Down

0 comments on commit 019b5c3

Please sign in to comment.