Repository: berialjs/berial
Branch: master
Commit: 12770c698e06
Files: 29
Total size: 30.2 KB
Directory structure:
gitextract_21d_bcf2/
├── .eslintignore
├── .eslintrc
├── .gitattributes
├── .github/
│ └── workflows/
│ └── ci.yml
├── .gitignore
├── .prettierignore
├── .prettierrc
├── LICENSE
├── README.md
├── example/
│ ├── .gitignore
│ ├── App.js
│ ├── README.md
│ ├── index.css
│ ├── index.html
│ ├── index.js
│ ├── package.json
│ └── webpack.config.js
├── package.json
├── plugin/
│ ├── bridge-event.ts
│ └── package.json
├── rollup.config.js
├── src/
│ ├── entity.ts
│ ├── html-loader.ts
│ ├── index.ts
│ ├── mixin.ts
│ ├── sandbox.ts
│ ├── types.ts
│ └── util.ts
└── tsconfig.json
================================================
FILE CONTENTS
================================================
================================================
FILE: .eslintignore
================================================
dist
coverage
node_modules
================================================
FILE: .eslintrc
================================================
{
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"extends": [
"prettier/@typescript-eslint",
"plugin:prettier/recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended"
],
"plugins": ["@typescript-eslint"],
"globals": {
"__DEV__": true
},
"env": {
"browser": true
},
"settings": {
"react": {
"pragma": "React",
"version": "detect"
}
},
"rules": {
"@typescript-eslint/no-use-before-define": 0,
"@typescript-eslint/no-var-requires": 0,
"@typescript-eslint/no-unused-vars": 0,
"@typescript-eslint/ban-ts-comment": 1,
"@typescript-eslint/camelcase": 0,
"@typescript-eslint/interface-name-prefix": 0,
"@typescript-eslint/no-explicit-any": 0,
"@typescript-eslint/no-empty-function": 0,
"@typescript-eslint/explicit-function-return-type": 2,
"@typescript-eslint/explicit-module-boundary-types": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"no-shadow": 1,
"prefer-const": 0,
"jsx-quotes": 0,
"prefer-rest-params":0,
"react/prop-types": 0,
"react/no-deprecated": 1,
"react/display-name": 1
}
}
================================================
FILE: .gitattributes
================================================
# Use Unix line endings in all text files.
* text=auto eol=lf
================================================
FILE: .github/workflows/ci.yml
================================================
name: ci
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm i
- run: npm run check
================================================
FILE: .gitignore
================================================
# dependencies
node_modules/
npm-debug.log*
yarn-error.log
yarn.lock
lerna-debug.log
**/**/node_modules/
**/**/**/node_modules/
# production
/dist
# misc
.DS_Store
.cache
coverage
# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw*
# Lock files
package-lock.json
yarn.lock
================================================
FILE: .prettierignore
================================================
dist/
================================================
FILE: .prettierrc
================================================
tabWidth: 2
useTabs: false
semi: false
arrowParens: always
singleQuote: true
printWidth: 80
trailingComma: none
================================================
FILE: LICENSE
================================================
MIT License
Copyright (c) 2020 yisar h-a-n-a
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
================================================
FILE: README.md
================================================