check epitech c coding style
Project description
NorMatrix
check some norm for you
install
With Pipy
with pipy
1
pip install normatrix
Now you can use it with python3 -m normatrix
in your terminal
2
And if you want to just write normatrix
:
echo $SHELL
if you are using bash shell (the echo
print /something/bash
):
echo alias normatrix=\"python3 -m normatrix\" >> $HOME/.bashrc
else if you are using zsh shell (the echo
print /something/like/zsh
):
echo alias normatrix=\"python3 -m normatrix\" >> $HOME/.zshrc
else handle this yourself bruh;
3
to update it, you just have to run
pip install -U normatrix
4
to uninstall it (sad), run
pip uninstall normatrix
From source
from source
1
git clone https://github.com/Saverio976/NorMatrix.git
cd NorMatrix
Now you can use it with ./path/to/folder/NorMatrix/main.py
in your terminal
2
And if you want to just write normatrix
:
echo $SHELL
if you are using bash shell (the echo
print /something/bash
):
echo alias normatrix=\"$PWD/main.py\" >> $HOME/.bashrc
else if you are using zsh shell (the echo
print /something/like/zsh
):
echo alias normatrix=\"$PWD/main.py\" >> $HOME/.zshrc
else handle this yourself bruh;
3
to update it, just go where you have cloned normatrix run
git pull
4
to uninstall it (sad) Delete the folder
Current Checks
- 80 cols per line
- space/tab alone (in a line)/(at the end of line)
- two newline at end of file
- two newline between function (between all buf chhhtt)
- libc function call (pr welcome to add some libc function always banned)
- nested branch more than 3 branch
- no more than 20 lines per function
- comma with no space after
- end of parenthesis with a open curly bracket next
){
- star char
*
like thischar* buf
- preprocessors indentations (
#if..
,#endif
) - multiple statements
- 5 functions per file
- filename of source code only snake_case
- no line break at end of file
- 5+5 7/9 that need a space (but some false positiv goes in)
- no space after [ and space before ]
- header
- #define in .c
- make + check exe if the compiler add some banned function
- ...
doc
(if you use pipy) python -m normatrix
(if you use pipy) python -m normatrix
usage: python -m normatrix [-h] [--no-operators-pluggin] [--preview] [--conf] [paths ...]
The C Epitech Coding Style Norm Checker
positional arguments:
paths list of path to check (default: the current working directory)
options:
-h, --help show this help message and exit
--no-operators-pluggin
remove the operators pluggin (because it print some false positiv for now)
--preview add some plugin that are added recently
--conf [deprecated] tells if you have a .normatrix config file
--only-error print only bad files with errors
--output format tell which output format to use [html, md, term_color]; for html the file is normatrix-result.htmk; for md the file is
normatrix-result.md
source: https://github.com/Saverio976/NorMatrix
(only from source) main.py
(only from source) main.py
usage: python -m normatrix [-h] [--no-operators-pluggin] [--preview] [--conf] [paths ...]
The C Epitech Coding Style Norm Checker
positional arguments:
paths list of path to check (default: the current working directory)
options:
-h, --help show this help message and exit
--no-operators-pluggin
remove the operators pluggin (because it print some false positiv for now)
--preview add some plugin that are added recently
--conf [deprecated] tells if you have a .normatrix config file
--only-error print only bad files with errors
--output format tell which output format to use [html, md, term_color]; for html the file is normatrix-result.htmk; for md the file is
normatrix-result.md
source: https://github.com/Saverio976/NorMatrix
(only from source) exec.sh
(only from source) exec.sh
(this file exists only to keep compatibility to older version)
usage: python -m normatrix [-h] [--no-operators-pluggin] [--preview] [--conf] [paths ...]
The C Epitech Coding Style Norm Checker
positional arguments:
paths list of path to check (default: the current working directory)
options:
-h, --help show this help message and exit
--no-operators-pluggin
remove the operators pluggin (because it print some false positiv for now)
--preview add some plugin that are added recently
--conf [depreacted] tells if you have a .normatrix config file
--only-error print only bad files with errors
--output format tell which output format to use [html, md, term_color]; for html the file is normatrix-result.htmk; for md the file is
normatrix-result.md
source: https://github.com/Saverio976/NorMatrix
(only from source) Makefile (deprecated)
(only from source) Makefile
(this file exists only to keep compatibility to older version) (if you can, move to another choice)
USAGE:
make -C path/to/NorMatrix PATH_CHECK=$PWD
DESCRIPTION:
check the norm! in the current working directory
(call main.py)
ARGS:
-C path/to/NorMatrix run the makefile that is in path/to/NorMatrix
instead of the one where you are
PATH_CHECK=$PWD check the norm in your current working
directory
configuration
you can now configure what functions are banned, and what are not, you can now configure what extension file are banned, and what are not,
all you have to do is put a file .normatrix.json
where you execute normatrix
example with nothing banned and no preview (preview = not stable check) check
.normatrix.json
{
"banned": [],
"no-banned": [],
"extension": [],
"no-extension": [],
"enable-preview": false
}
just add inside []
the string of what you want
other explanation with example
other explanation with example
- to no-banne memset (because you can use it)
{
"no-banned": ["memset"]
}
- to banne my_printf (because you dont want to use it)
{
"banned": ["my_printf"]
}
- to no-banne *.o file (because you dont need this warning)
{
"no-extension": [".o"]
}
- to banne *.c file (because you want c fiel banned)
{
"extension": [".c"]
}
- to enable preview check by default
{
"enable-preview": true
}
by default there are somthing like this:
{
"banned": ["printf", "memset", "strcpy", "strcat", "calloc"],
"no-banned": [],
"extension": [".a", ".o", ".so", ".gch", "~", "#", ".d"],
"no-extension": [],
"enable-preview": false
}
this configuration will be added even if you add a .normatrix.json
file
but if you want to remove *.o
, just add it to the no-extension
or you can put *.o
in a .gitignore
it will remove it from the default
example if you run it as a github workflow
this is not the latest normatrix but :
link : link
(N.B. : this workflow pass well, but it will not if you copy the code below)
run it as a github workflow
in the repo root :
mkdir .github
mkdir .github/workflows
echo '
name: NorMatrix Check
on: [push]
jobs:
norm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: set up python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: clone NorMatrix
run: git clone https://github.com/Saverio976/NorMatrix.git
- name: NorMatrix
run: ./NorMatrix/main.py
' > .github/workflows/normatrix_check.yml
Contribute
[more information on CONTRIBUTNG.md]
special thanks
- chempa for his sample of file that dont follow the epitech norm
- and invisble testers that says "bha baah normatrix have a bug"
contributors
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file normatrix-0.3.0.post2.tar.gz
.
File metadata
- Download URL: normatrix-0.3.0.post2.tar.gz
- Upload date:
- Size: 18.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c795e2f22a397c6b04a41aae983e20201dccdee351433f3ed3b590d6fd95dd01 |
|
MD5 | a48704b15d9589b1a5efef884cb9649e |
|
BLAKE2b-256 | 5c7bba47b69055005edd30d0b5e91bdfc5f8126aae6f4d93396c3c5a7fe52aa9 |
Provenance
File details
Details for the file normatrix-0.3.0.post2-py3-none-any.whl
.
File metadata
- Download URL: normatrix-0.3.0.post2-py3-none-any.whl
- Upload date:
- Size: 26.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 277ea39e2779215a4c136794dce8f9c1958575d3efaba2347f39a5717bbcb756 |
|
MD5 | cc1b18e7825e20b188795ca8db5cea27 |
|
BLAKE2b-256 | 321f6c050bb21e01fc1806ecfdf14153610a5f90dc1edc05db9288f5fc2c25a3 |