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

3.0.0: Remove sourcemaps and minified files; clean up package and remove unecessary config #50

Merged
merged 15 commits into from
Sep 18, 2023
Merged
52 changes: 3 additions & 49 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
},
"extends": [
"eslint:recommended",
"google",
"plugin:@typescript-eslint/recommended",
"plugin:mocha/recommended"
"plugin:mocha/recommended",
"plugin:prettier/recommended"
],
"globals": {
"Atomics": "readonly",
Expand All @@ -19,53 +19,7 @@
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
//: Off because Prettier controls this
"indent": "off",
"@typescript-eslint/indent": "off",
"linebreak-style": "off",
"@typescript-eslint/linebreak-style": "off",
//: Off because conflicts with jsdoc plugin
"valid-jsdoc": "off",
"require-jsdoc": "off",
"jsdoc/check-alignment": 1,
//: Off because https://github.com/gajus/eslint-plugin-jsdoc/issues/334
"jsdoc/check-indentation": 0,
"jsdoc/check-param-names": 1,
"jsdoc/check-syntax": 1,
"jsdoc/check-tag-names": 1,
"jsdoc/implements-on-classes": 1,
"jsdoc/match-description": 1,
"jsdoc/no-types": 1,
"jsdoc/require-jsdoc": "off",
"jsdoc/require-param": 1,
"jsdoc/require-param-description": 1,
"jsdoc/require-param-name": 1,
"comma-dangle": ["error", "never"],
"quotes": "off",
"no-console": "off",
"no-dupe-class-members": "off",
"no-param-reassign": "error",
"@typescript-eslint/prefer-for-of": "error",
"@typescript-eslint/no-parameter-properties": "off",
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/array-type": ["error", {"default": "array-simple"}],
//: Off because sometimes using any makes sense; ie: `(...args: any[]) -> any`
"@typescript-eslint/no-explicit-any": "off",
"max-len": [
"error",
{
"code": 80,
"tabWidth": 2,
"ignoreComments": false,
"ignoreTrailingComments": false,
"ignoreUrls": true,
"ignoreStrings": false,
"ignoreTemplateLiterals": false,
"ignoreRegExpLiterals": false
}
]
},
"rules": {},
"parser": "@typescript-eslint/parser",
"plugins": ["jsdoc", "mocha"]
}
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: CI

on: [push]

jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm ci
- run: npm run lint
- run: npm run test
49 changes: 0 additions & 49 deletions azure-pipelines.yml

This file was deleted.

5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable outward-facing changes will be documented in this file.

## 3.0.0

- Remove sourcemaps and definitionmaps from the distribution to resolve resolution errors
- Remove minified files from the distribution to simplify future maintenance

## 2.0.1

- Update dependencies to fix security vulnerabilities
Expand Down
Loading