10 lines
166 B
Bash
Executable File
10 lines
166 B
Bash
Executable File
#!/bin/bash
|
|
sync() (
|
|
cd "$1" && git diff > "../patch/$1.patch"
|
|
)
|
|
|
|
sync eslint-plugin-import
|
|
sync eslint-plugin-jsx-a11y
|
|
sync eslint-plugin-react
|
|
sync jsx-ast-utils
|