Add more ignore patterns #1311
@@ -11,7 +11,7 @@ const path = require('path');
|
|||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
root: true,
|
root: true,
|
||||||
ignorePatterns: ['dist/**', 'tests/generated/**'],
|
ignorePatterns: ['binaries/**', 'build/**', 'dist/**', 'tests/generated/**'],
|
||||||
extends: ['eslint:recommended', 'plugin:prettier/recommended'],
|
extends: ['eslint:recommended', 'plugin:prettier/recommended'],
|
||||||
plugins: ['prettier'],
|
plugins: ['prettier'],
|
||||||
rules: {
|
rules: {
|
||||||
|
@@ -1,2 +1,4 @@
|
|||||||
tests/generated/
|
binaries/
|
||||||
|
build/
|
||||||
src/generated/
|
src/generated/
|
||||||
|
tests/generated/
|
||||||
|
@@ -64,9 +64,11 @@ target_link_options(asmjs-async PUBLIC
|
|||||||
add_executable(wasm-sync $<TARGET_OBJECTS:yogaObjLib>)
|
add_executable(wasm-sync $<TARGET_OBJECTS:yogaObjLib>)
|
||||||
target_link_options(wasm-sync PUBLIC
|
target_link_options(wasm-sync PUBLIC
|
||||||
"SHELL:-s WASM=1"
|
"SHELL:-s WASM=1"
|
||||||
|
"SHELL:-s SINGLE_FILE=1"
|
||||||
"SHELL:-s WASM_ASYNC_COMPILATION=0")
|
"SHELL:-s WASM_ASYNC_COMPILATION=0")
|
||||||
|
|
||||||
add_executable(wasm-async $<TARGET_OBJECTS:yogaObjLib>)
|
add_executable(wasm-async $<TARGET_OBJECTS:yogaObjLib>)
|
||||||
target_link_options(wasm-async PUBLIC
|
target_link_options(wasm-async PUBLIC
|
||||||
"SHELL:-s WASM=1"
|
"SHELL:-s WASM=1"
|
||||||
|
"SHELL:-s SINGLE_FILE=1"
|
||||||
"SHELL:-s WASM_ASYNC_COMPILATION=1")
|
"SHELL:-s WASM_ASYNC_COMPILATION=1")
|
||||||
|
@@ -17,5 +17,9 @@
|
|||||||
},
|
},
|
||||||
"ts-node": {
|
"ts-node": {
|
||||||
"transpileOnly": true
|
"transpileOnly": true
|
||||||
}
|
},
|
||||||
|
"exclude": [
|
||||||
|
"binaries/**/*",
|
||||||
|
"build/**/*"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user