Skip to content

Commit bff6f38

Browse files
authored
Merge pull request #47 from aaron5670/optimizely-features-search
Functionality: Search for Optimizely Feature Toggles
2 parents 3c2769c + 88788bf commit bff6f38

24 files changed

+1654
-334
lines changed

.eslintrc.json

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2021": true
5+
},
6+
"extends": [
7+
"eslint:recommended",
8+
"plugin:@typescript-eslint/recommended",
9+
"plugin:react/recommended",
10+
"plugin:perfectionist/recommended-line-length"
11+
],
12+
"parser": "@typescript-eslint/parser",
13+
"parserOptions": {
14+
"ecmaVersion": "latest",
15+
"sourceType": "module"
16+
},
17+
"plugins": [
18+
"perfectionist"
19+
],
20+
"rules": {
21+
"perfectionist/sort-objects": [
22+
"error",
23+
{
24+
"type": "natural",
25+
"order": "asc"
26+
}
27+
]
28+
}
29+
}

package.json

+10-4
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,20 @@
22
"name": "toggle-experiment",
33
"displayName": "Toggle Experiment",
44
"description": "A browser extension to inject the LocalStorage of a website for Optimizely experiments.",
5-
"version": "0.10.1",
5+
"version": "0.11.0",
66
"author": "Aaron van den Berg",
77
"homepage": "https://aaronvandenberg.nl/",
88
"scripts": {
99
"dev": "plasmo dev",
10+
"lint": "eslint --ext .ts,.tsx,.js,.jsx src/**/* --fix",
1011
"build": "plasmo build",
1112
"package": "plasmo package"
1213
},
1314
"dependencies": {
1415
"@emotion/react": "^11.11.1",
15-
"@mantine/core": "^6.0.13",
16-
"@mantine/hooks": "^6.0.13",
17-
"@mantine/notifications": "^6.0.13",
16+
"@mantine/core": "^6.0.15",
17+
"@mantine/hooks": "^6.0.15",
18+
"@mantine/notifications": "^6.0.15",
1819
"@plasmohq/storage": "^1.6.1",
1920
"@tabler/icons-react": "^2.22.0",
2021
"immer": "^9.0.21",
@@ -30,6 +31,11 @@
3031
"@types/node": "18.16.18",
3132
"@types/react": "18.2.12",
3233
"@types/react-dom": "18.2.5",
34+
"@typescript-eslint/eslint-plugin": "^5.60.1",
35+
"@typescript-eslint/parser": "^5.60.1",
36+
"eslint": "^8.43.0",
37+
"eslint-plugin-perfectionist": "^1.4.0",
38+
"eslint-plugin-react": "^7.32.2",
3339
"prettier": "2.8.8",
3440
"typescript": "4.9.5"
3541
},

0 commit comments

Comments
 (0)