Skip to content

Commit 29d9a27

Browse files
Merge pull request #93 from PorkyProductions/dev
UADetect 5
2 parents 9e157c3 + 7fa51db commit 29d9a27

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+7522
-5981
lines changed

.eslintignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
dist/
2+
tests/
3+
specs/
4+
coverage/
5+
node_modules/
6+
jest.config.cjs

.eslintrc.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2021": true
5+
},
6+
"extends": [
7+
"eslint:recommended",
8+
// "airbnb-base", // use if you dare. I'm sure it looks nicer but omg is it hard to refactor
9+
"plugin:@typescript-eslint/recommended"
10+
],
11+
"ignorePatterns": [
12+
"./dist/*"
13+
],
14+
"overrides": [
15+
],
16+
"parser": "@typescript-eslint/parser",
17+
"parserOptions": {
18+
"ecmaVersion": "latest",
19+
"sourceType": "module"
20+
},
21+
"plugins": [
22+
"@typescript-eslint"
23+
],
24+
"rules": {
25+
"indent": [
26+
"error",
27+
"tab"
28+
],
29+
"linebreak-style": [
30+
"error",
31+
"windows"
32+
],
33+
"quotes": [
34+
"error",
35+
"single"
36+
],
37+
"semi": [
38+
"error",
39+
"always"
40+
]
41+
}
42+
}

.github/workflows/npm-publish.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v18.9.1
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)