📄 local.lnt
字号:
//-w0 //No messages (except for fatal errors)
//-w1 //Error messages only -- no Warnings or Informationals.
//-w2 //Error and Warning messages only
-w3 //Error, Warning and Informational messages (this is the default)
//-w4 //All messages
//-i../common
//-D__M16C__=1
//controls the number of passes lint makes over the source code. The default is 1.
-passes(1)
// tab is 4 spaces
-t4
// Turn off strong type checking
-strong()
// Doesn't like while(1) loops. NOTE: They want me to use for(;;) instead, but I think that's that stupid.
-e716
//Warning 620: Suspicious constant (L or one?)
-e620
//local typedef 'uint16' (line 53, file main_lin_master.c) not referenced
-e751
//Info 830: Location cited in prior message
-e830
//Not used =========================================================
// Ignoring return value of function 'Symbol'
//-e534
// Suspicious pointer-to-pointer conversion (area too small)
//-e826
// Assignment to strong type 'Name' in context: Context
//-e632
// Assignment from a strong type 'Name' in context: Context
//-e633
// Redundantly declared symbol
//-e762
// Pointer parameter could be declared as pointing to const
//-e818
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -