Skip to content

Commit f17306b

Browse files
authoredJul 5, 2023
chore/assistive-ai: assistive-ai demo project (#5)
1 parent 542e475 commit f17306b

Some content is hidden

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

42 files changed

+7595
-0
lines changed
 

‎.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,8 @@
22
.env.staging
33
/dist
44
/node_modules
5+
.DS_Store
56
.idea/
7+
8+
# demos
9+
/demos/**/node_modules

‎demos/assistive-ai/.eslintrc.cjs

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
module.exports = {
2+
env: { browser: true, es2020: true },
3+
extends: [
4+
'eslint:recommended',
5+
'plugin:@typescript-eslint/recommended',
6+
'plugin:react-hooks/recommended',
7+
],
8+
parser: '@typescript-eslint/parser',
9+
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
10+
plugins: ['react-refresh'],
11+
rules: {
12+
'react-refresh/only-export-components': 'warn',
13+
},
14+
}

0 commit comments

Comments
 (0)
Please sign in to comment.