2 Star 1 Fork 10

流媒体 / h265player

forked from Black / h265player 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.js 696 Bytes
一键复制 编辑 原始数据 按行查看 历史
Xu Luying 提交于 2020-01-20 10:00 . Init commit
// https://eslint.org/docs/user-guide/configuring
module.exports = {
root: true,
env: {
browser: true,
es6: true
},
extends: 'eslint:recommended',
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly'
},
parser: 'babel-eslint',
parserOptions: {
ecmaVersion: 2018,
sourceType: 'module',
allowImportExportEverywhere: true
},
// https://eslint.org/docs/rules/
rules: {
'no-unused-vars': [
'warn',
{
vars: 'all',
args: 'after-used',
ignoreRestSiblings: false,
caughtErrors: 'none'
}
],
'no-empty': 0,
'no-prototype-builtins': 1,
"no-undef": 0,
"no-constant-condition": [
"error",
{
"checkLoops": false
}
]
}
};
1
https://gitee.com/streaming-media-item/h265player.git
git@gitee.com:streaming-media-item/h265player.git
streaming-media-item
h265player
h265player
master

搜索帮助