Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
pro-blocks
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
duanledexianxianxian
pro-blocks
Commits
4e733b7b
Commit
4e733b7b
authored
Mar 27, 2019
by
xiaohuoni
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
remove surplus file
parent
70681d8e
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
0 additions
and
266 deletions
+0
-266
Exception403/tsconfig.json
Exception403/tsconfig.json
+0
-26
Exception403/tslint.yml
Exception403/tslint.yml
+0
-95
Exception403/typings.d.ts
Exception403/typings.d.ts
+0
-12
Exception404/tsconfig.json
Exception404/tsconfig.json
+0
-26
Exception404/tslint.yml
Exception404/tslint.yml
+0
-95
Exception404/typings.d.ts
Exception404/typings.d.ts
+0
-12
No files found.
Exception403/tsconfig.json
deleted
100644 → 0
View file @
70681d8e
{
"compilerOptions"
:
{
"outDir"
:
"build/dist"
,
"module"
:
"esnext"
,
"target"
:
"esnext"
,
"lib"
:
[
"esnext"
,
"dom"
],
"sourceMap"
:
true
,
"baseUrl"
:
"."
,
"jsx"
:
"react"
,
"allowSyntheticDefaultImports"
:
true
,
"moduleResolution"
:
"node"
,
"rootDirs"
:
[
"/src"
,
"/test"
,
"/mock"
,
"./typings"
],
"forceConsistentCasingInFileNames"
:
true
,
"noImplicitReturns"
:
true
,
"suppressImplicitAnyIndexErrors"
:
true
,
"noUnusedLocals"
:
true
,
"allowJs"
:
true
,
"experimentalDecorators"
:
true
,
"strict"
:
true
,
"paths"
:
{
"@/*"
:
[
"./src/*"
]
}
},
"include"
:
[
"."
],
"exclude"
:
[
"node_modules"
,
"_scripts"
,
"jest"
,
"tslint:latest"
,
"tslint-config-prettier"
]
}
Exception403/tslint.yml
deleted
100644 → 0
View file @
70681d8e
defaultSeverity
:
error
extends
:
-
tslint-react
-
tslint-eslint-rules
-
tslint-config-prettier
jsRules
:
rules
:
class-name
:
true
eofline
:
true
forin
:
true
jsdoc-format
:
false
label-position
:
true
member-ordering
:
-
true
-
order
:
statics-first
new-parens
:
true
no-arg
:
true
no-bitwise
:
true
no-conditional-assignment
:
true
no-consecutive-blank-lines
:
true
no-console
:
-
true
-
debug
-
info
-
log
-
time
-
timeEnd
-
trace
-
warn
no-construct
:
true
no-debugger
:
true
no-duplicate-variable
:
true
no-eval
:
true
no-internal-module
:
true
no-multi-spaces
:
true
no-namespace
:
true
no-reference
:
true
no-shadowed-variable
:
true
no-string-literal
:
true
no-trailing-whitespace
:
true
no-unused-expression
:
true
no-var-keyword
:
true
one-variable-per-declaration
:
-
true
-
ignore-for-loop
prefer-const
:
-
true
-
destructuring
:
all
radix
:
true
space-in-parens
:
true
switch-default
:
true
trailing-comma
:
-
true
-
singleline
:
never
multiline
:
always
esSpecCompliant
:
true
triple-equals
:
-
true
-
allow-null-check
typedef-whitespace
:
-
true
-
call-signature
:
nospace
index-signature
:
nospace
parameter
:
nospace
property-declaration
:
nospace
variable-declaration
:
nospace
-
call-signature
:
onespace
index-signature
:
onespace
parameter
:
onespace
property-declaration
:
onespace
variable-declaration
:
onespace
use-isnan
:
true
variable-name
:
-
true
-
allow-leading-underscore
-
ban-keywords
-
check-format
-
allow-pascal-case
jsx-no-lambda
:
false
jsx-no-string-ref
:
false
jsx-boolean-value
:
-
true
-
never
jsx-no-multiline-js
:
false
whitespace
:
-
true
-
check-branch
-
check-decl
-
check-operator
-
check-module
-
check-separator
-
check-rest-spread
-
check-type
-
check-type-operator
-
check-preblock
Exception403/typings.d.ts
deleted
100644 → 0
View file @
70681d8e
declare
module
'
*.css
'
;
declare
module
'
*.less
'
;
declare
module
'
*.scss
'
;
declare
module
'
*.sass
'
;
declare
module
'
*.svg
'
;
declare
module
'
*.png
'
;
declare
module
'
*.jpg
'
;
declare
module
'
*.jpeg
'
;
declare
module
'
*.gif
'
;
declare
module
'
*.bmp
'
;
declare
module
'
*.tiff
'
;
declare
var
APP_TYPE
:
string
;
Exception404/tsconfig.json
deleted
100644 → 0
View file @
70681d8e
{
"compilerOptions"
:
{
"outDir"
:
"build/dist"
,
"module"
:
"esnext"
,
"target"
:
"esnext"
,
"lib"
:
[
"esnext"
,
"dom"
],
"sourceMap"
:
true
,
"baseUrl"
:
"."
,
"jsx"
:
"react"
,
"allowSyntheticDefaultImports"
:
true
,
"moduleResolution"
:
"node"
,
"rootDirs"
:
[
"/src"
,
"/test"
,
"/mock"
,
"./typings"
],
"forceConsistentCasingInFileNames"
:
true
,
"noImplicitReturns"
:
true
,
"suppressImplicitAnyIndexErrors"
:
true
,
"noUnusedLocals"
:
true
,
"allowJs"
:
true
,
"experimentalDecorators"
:
true
,
"strict"
:
true
,
"paths"
:
{
"@/*"
:
[
"./src/*"
]
}
},
"include"
:
[
"."
],
"exclude"
:
[
"node_modules"
,
"_scripts"
,
"jest"
,
"tslint:latest"
,
"tslint-config-prettier"
]
}
Exception404/tslint.yml
deleted
100644 → 0
View file @
70681d8e
defaultSeverity
:
error
extends
:
-
tslint-react
-
tslint-eslint-rules
-
tslint-config-prettier
jsRules
:
rules
:
class-name
:
true
eofline
:
true
forin
:
true
jsdoc-format
:
false
label-position
:
true
member-ordering
:
-
true
-
order
:
statics-first
new-parens
:
true
no-arg
:
true
no-bitwise
:
true
no-conditional-assignment
:
true
no-consecutive-blank-lines
:
true
no-console
:
-
true
-
debug
-
info
-
log
-
time
-
timeEnd
-
trace
-
warn
no-construct
:
true
no-debugger
:
true
no-duplicate-variable
:
true
no-eval
:
true
no-internal-module
:
true
no-multi-spaces
:
true
no-namespace
:
true
no-reference
:
true
no-shadowed-variable
:
true
no-string-literal
:
true
no-trailing-whitespace
:
true
no-unused-expression
:
true
no-var-keyword
:
true
one-variable-per-declaration
:
-
true
-
ignore-for-loop
prefer-const
:
-
true
-
destructuring
:
all
radix
:
true
space-in-parens
:
true
switch-default
:
true
trailing-comma
:
-
true
-
singleline
:
never
multiline
:
always
esSpecCompliant
:
true
triple-equals
:
-
true
-
allow-null-check
typedef-whitespace
:
-
true
-
call-signature
:
nospace
index-signature
:
nospace
parameter
:
nospace
property-declaration
:
nospace
variable-declaration
:
nospace
-
call-signature
:
onespace
index-signature
:
onespace
parameter
:
onespace
property-declaration
:
onespace
variable-declaration
:
onespace
use-isnan
:
true
variable-name
:
-
true
-
allow-leading-underscore
-
ban-keywords
-
check-format
-
allow-pascal-case
jsx-no-lambda
:
false
jsx-no-string-ref
:
false
jsx-boolean-value
:
-
true
-
never
jsx-no-multiline-js
:
false
whitespace
:
-
true
-
check-branch
-
check-decl
-
check-operator
-
check-module
-
check-separator
-
check-rest-spread
-
check-type
-
check-type-operator
-
check-preblock
Exception404/typings.d.ts
deleted
100644 → 0
View file @
70681d8e
declare
module
'
*.css
'
;
declare
module
'
*.less
'
;
declare
module
'
*.scss
'
;
declare
module
'
*.sass
'
;
declare
module
'
*.svg
'
;
declare
module
'
*.png
'
;
declare
module
'
*.jpg
'
;
declare
module
'
*.jpeg
'
;
declare
module
'
*.gif
'
;
declare
module
'
*.bmp
'
;
declare
module
'
*.tiff
'
;
declare
var
APP_TYPE
:
string
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment