mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
- On OSX, `find` is more picky about its arguments than on Linux and requires the start directory(-ies) to be explicitly mentioned before the expressions (a.k.a. "primaries"). However, until now, the `pylint` runner script called `find` without a start dir, which caused an error on OSX. - Until now, `find` looked for python scripts in all subdirectories of the project, causing `pylint` to check scripts under `targets/` and `tests/test262` (if `test262` was checked out). However, the files under `targets/` are less strictly controlled while `test262` is completely beyond the control of the project. This caused a lot of superfluous lint warnings. This patch makes the `pylint` runner script call `find` in the cross-platform way, and also limits the scope of the lint checks to the `tools/` and `jerry-debugger/` directories. JerryScript-DCO-1.0-Signed-off-by: Akos Kiss akiss@inf.u-szeged.hu
19 lines
725 B
Bash
Executable File
19 lines
725 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright JS Foundation and other contributors, http://js.foundation
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
find ./tools ./jerry-debugger -name "*.py" \
|
|
| xargs pylint --rcfile=tools/pylint/pylintrc
|