Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
File filter

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
wip
  • Loading branch information
basicdays committed Mar 15, 2022
commit a5784d574144d128e2129e9714910dec7fc2f812
38 changes: 38 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
"use strict";
const config = {
root: true,
env: {
es2022: true,
node: true,
},
extends: ["eslint:recommended"],
rules: {
strict: ["error"],
"valid-jsdoc": [
"error",
{
requireReturn: false,
requireReturnType: false,
requireParamType: false,
},
],
},
overrides: [
{
files: ["src/**"],
parser: "@typescript-eslint/parser",
parserOptions: {
tsconfigRootDir: __dirname,
project: ["./tsconfig.json"],
},
plugins: ["@typescript-eslint/eslint-plugin"],
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"prettier",
],
},
],
};
module.exports = config;
28 changes: 0 additions & 28 deletions .eslintrc.json

This file was deleted.

10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: node_js
node_js:
- 'node'
- '8'
- '6'
install: make -j4 build
script: make full-test
- "node"
- "16"
- "14"
- "12"
before_script: npm run build
Loading