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