-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat:add o icone novo do chat e mudando o footer
- Loading branch information
Showing
27 changed files
with
1,130 additions
and
1,096 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.git | ||
**/node_modules | ||
node_modules | ||
out | ||
dist | ||
Dockerfile | ||
**/Dockerfile | ||
.dockerignore | ||
**/.dockerignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 2 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
module.exports = { | ||
env: { | ||
browser: true, | ||
es6: true, | ||
node: true | ||
}, | ||
extends: ['prettier'], | ||
parser: '@typescript-eslint/parser', | ||
parserOptions: { | ||
project: [ | ||
'./packages/*/tsconfig.json', | ||
'./packages/bp/e2e/tsconfig.json', | ||
'./modules/tsconfig*.eslint.json', | ||
'./internal-modules/tsconfig*.eslint.json', | ||
'./build/module-builder/tsconfig.json', | ||
'./build/downloader/tsconfig.json' | ||
], | ||
tsconfigRootDir: __dirname, | ||
sourceType: 'module' | ||
}, | ||
ignorePatterns: [ | ||
'**/index.d.ts', | ||
'**/global.d.ts', | ||
'**/knex.d.ts', | ||
'**/*.scss.d.ts', | ||
'**/*.test.ts', | ||
'*.js', | ||
'**/node_modules/**', | ||
'**/dist/**' | ||
], | ||
plugins: ['eslint-plugin-import', 'eslint-plugin-jsdoc', '@typescript-eslint'], | ||
rules: { | ||
'@typescript-eslint/array-type': 'error', | ||
'@typescript-eslint/no-non-null-asserted-optional-chain': 'error', | ||
'@typescript-eslint/await-thenable': 'error', | ||
'@typescript-eslint/consistent-type-definitions': 'error', | ||
'@typescript-eslint/member-delimiter-style': [ | ||
'error', | ||
{ | ||
multiline: { | ||
delimiter: 'none', | ||
requireLast: true | ||
}, | ||
singleline: { | ||
delimiter: 'semi', | ||
requireLast: false | ||
} | ||
} | ||
], | ||
'@typescript-eslint/no-floating-promises': 'error', | ||
'@typescript-eslint/prefer-namespace-keyword': 'error', | ||
'@typescript-eslint/quotes': [ | ||
'error', | ||
'single', | ||
{ | ||
avoidEscape: true | ||
} | ||
], | ||
'@typescript-eslint/semi': ['error', 'never'], | ||
'@typescript-eslint/type-annotation-spacing': 'error', | ||
'brace-style': ['error', '1tbs'], | ||
curly: 'error', | ||
'eol-last': 'error', | ||
eqeqeq: ['error', 'smart'], | ||
'import/order': [ | ||
'warn', | ||
{ | ||
groups: [['builtin', 'external'], 'parent', 'index', 'sibling'], | ||
// TODO: Eventually enable this in the future for consistency | ||
// 'newlines-between': 'always', | ||
alphabetize: { | ||
order: 'asc', | ||
caseInsensitive: true | ||
}, | ||
pathGroups: [ | ||
{ | ||
pattern: '~/**', | ||
group: 'external', | ||
position: 'after' | ||
} | ||
], | ||
pathGroupsExcludedImportTypes: ['builtin'] | ||
} | ||
], | ||
'jsdoc/check-alignment': 'error', | ||
'linebreak-style': ['error', 'unix'], | ||
'no-console': [ | ||
'warn', | ||
{ | ||
allow: [ | ||
'warn', | ||
'dir', | ||
'time', | ||
'timeEnd', | ||
'timeLog', | ||
'trace', | ||
'assert', | ||
'clear', | ||
'count', | ||
'countReset', | ||
'group', | ||
'groupEnd', | ||
'table', | ||
'debug', | ||
'info', | ||
'dirxml', | ||
'error', | ||
'groupCollapsed', | ||
'Console', | ||
'profile', | ||
'profileEnd', | ||
'timeStamp', | ||
'context' | ||
] | ||
} | ||
], | ||
'no-duplicate-imports': 'error', | ||
'no-return-await': 'error', | ||
'no-trailing-spaces': 'error', | ||
'no-var': 'error', | ||
'object-shorthand': 'error', | ||
'prefer-const': 'warn' | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
* text=auto eol=lf | ||
|
||
*.png -text | ||
*.jpg -text | ||
*.gif -text | ||
*.mp3 -text | ||
*.tgz -text | ||
*.sfx -text | ||
*.woff2 -text | ||
*.node -text | ||
|
||
modules/nlu/src/backend/tools/pretrained/* -text | ||
modules/nlu/src/backend/language/pre-trained/* -text | ||
modules/.knowledge/src/backend/tools/bin/* -text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,4 +71,4 @@ cache | |
modules/*/assets/web/* | ||
modules/*/assets/config.schema.json | ||
**/out/** | ||
**/dist/** | ||
**/dist/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[submodule "pro"] | ||
path = packages/bp/src/pro | ||
url = [email protected]:botpress/botpress-pro.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
image: node:12-alpine | ||
tasks: | ||
- init: yarn && yarn build | ||
command: yarn run start | ||
openMode: split-right | ||
name: Builds & run Botpress | ||
|
||
vscode: | ||
extensions: | ||
- [email protected]:GDba64T6G+TUi1qmc6BE3A== | ||
- [email protected]:fDVCkGVYd1R2lfcs1tHk+Q== | ||
- [email protected]:zy4YO0p/vGcDbgPap4k4+A== | ||
- [email protected]:TEjqQVt71hdvHUZA7eWgHA== | ||
|
||
github: | ||
prebuilds: | ||
master: true | ||
branches: true | ||
pullRequests: true | ||
pullRequestsFromForks: false | ||
addComment: true | ||
addBadge: true | ||
addLabel: prebuilt-ready |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
12.18.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"printWidth": 120, | ||
"singleQuote": true, | ||
"trailingComma": "none", | ||
"semi": false, | ||
"bracketSpacing": true, | ||
"requirePragma": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
python 2.7.18 | ||
nodejs 12.18.3 |
Oops, something went wrong.