Skip to content

Commit 7370af6

Browse files
authored
Merge pull request #6 from palico-ai/copilot-widget
FEAT: Added simple copilot widget
2 parents bebe68f + 4f49687 commit 7370af6

File tree

16 files changed

+923
-215
lines changed

16 files changed

+923
-215
lines changed

.eslintignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
dist
1+
dist
2+
**/*.js

.eslintrc.js

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,24 @@
11
module.exports = {
2-
"env": {
3-
"browser": true,
4-
"es2021": true
5-
},
6-
"extends": [
7-
"plugin:react/recommended",
8-
"standard-with-typescript"
9-
],
10-
"overrides": [
11-
],
12-
"parserOptions": {
13-
"ecmaVersion": "latest",
14-
"sourceType": "module"
15-
},
16-
"plugins": [
17-
"react"
18-
],
19-
"rules": {
20-
"@typescript-eslint/no-extraneous-class": "off",
21-
"@typescript-eslint/strict-boolean-expressions": "off",
22-
}
2+
env: {
3+
browser: true,
4+
es2021: true
5+
},
6+
extends: [
7+
'plugin:react/recommended',
8+
'standard-with-typescript'
9+
],
10+
overrides: [
11+
],
12+
parserOptions: {
13+
ecmaVersion: 'latest',
14+
sourceType: 'module'
15+
},
16+
plugins: [
17+
'react'
18+
],
19+
rules: {
20+
'@typescript-eslint/no-extraneous-class': 'off',
21+
'@typescript-eslint/strict-boolean-expressions': 'off',
22+
'@typescript-eslint/no-misused-promises': 'off'
23+
}
2324
}

0 commit comments

Comments
 (0)