Skip to content

Commit

Permalink
Remove eslint changes
Browse files Browse the repository at this point in the history
  • Loading branch information
jgerigmeyer committed Nov 29, 2023
1 parent 0fa47fb commit 82d2ce9
Show file tree
Hide file tree
Showing 6 changed files with 75 additions and 1,438 deletions.
97 changes: 0 additions & 97 deletions .eslintrc.cjs

This file was deleted.

37 changes: 37 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"impliedStrict": true
}
},
"env": {
"browser": true,
"node": true
},
"rules": {
"semi": 1,
"no-dupe-args": 1,
"no-dupe-keys": 1,
"no-unreachable": 1,
"valid-typeof": 1,
"curly": 1,
"no-useless-call": 1,
"brace-style": [1, "stroustrup"],
"no-mixed-spaces-and-tabs": [1, "smart-tabs"],
"quotes": [1, "double", {"avoidEscape": true, "allowTemplateLiterals": true}],
"spaced-comment": [1, "always", {
"block": {
"exceptions": ["*"]
}
}],
"arrow-spacing": 1,
"comma-spacing": 1,
"keyword-spacing": 1,
"eol-last": 1,
"no-trailing-spaces": 1,
"space-before-function-paren": 1
}
}
23 changes: 0 additions & 23 deletions .github/workflows/lint.yml

This file was deleted.

21 changes: 21 additions & 0 deletions .github/workflows/test-types.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Test Type Definitions
on:
push:
branches: [main]
paths: [types/**/*]
pull_request:
branches: [main]
paths: [types/**/*]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "14"

- run: npm install
- run: npm run dtslint
Loading

0 comments on commit 82d2ce9

Please sign in to comment.